.image-container {
    width: 100%; /* 容器宽度 */
    height: 500px; /* 容器高度，可以根据需要调整 */
    background-image: url('/images/banner1.jpg'); /* 替换为你的图片路径 */
    background-size: cover; /* 使图片覆盖整个容器 */
    background-position: center; /* 图片居中显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
  }
 